/* couleur des liens*/
a:link { color: #000080 ; }
a:visited {color: #000080; }
a:active {color: #000080; }
a:hover { color: #000080 ; text-decoration: none ; }
/*Style définissant le téléphone*/
.tel
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12pt;
color: #FF0000;   /*rouge*/
font-weight: bold;
}
/*Style définissant le fax*/
.fax
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10pt;
color: #FF0000;   /*rouge*/
font-weight: bold;
}
/*Style définissant le texte principal*/
.mail
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10pt;
color: #FFFFFF;
text-align: left;
font-weight: normal;
}
/*Style définissant le texte principal*/
.titreblanc
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10pt;
color: #FFFFFF;
text-align: left;
font-weight: bold;
}
/* Définition des attributs des menus déroulants présents en haut de toutes les pages*/

/*Cadre bleu entourant la ligne de menu*/
table.bordmenu
{
 border-style: solid none solid none;
 border-color: #000080;
 border-top-width: 1px;
 border-bottom-width: 5px;
}
.contentMenu {
  width: 100%;
  border-bottom: solid #e2e2e2 1px;
}
ul#menu
{
  height: 50px;
  line-height: 50px;
  margin: 0 auto;
  list-style: none;
  width: 950px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;  
  font-size: 16px;
  overflow: hidden;
  padding: 0;
  text-align: center;
}
ul#menu a, ul#menu li.active > a {
  position: relative;
  color: #545454;
  text-decoration: none;
}
ul#menu a:hover, ul#menu li.active > a {
  text-decoration: none;
  color: rgba(12, 38, 76, 0.86);
}
ul#menu a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
ul#menu a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: rgba(12, 38, 76, 0.86);
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
} 
ul#menu li.active > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  visibility: visible;
  background-color: rgba(12, 38, 76, 0.86);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
ul#menu li {
  display: inline-block;
  padding: 0 30px;
}

ul#menu li ul
{
  display: none;
}

ul#menu li:hover > ul
{
 display: block;
}

ul#menu ul
{ 
  margin: 0;
  padding: 0;
  background: rgb(255, 255, 255);
  border: 1px solid;
  border-color: #808080;
  position: absolute;
  list-style: none;
  width: auto;
  z-index: 2;
  padding-bottom: 10px;
}
ul#menu ul li
{
  display: block;
  position: relative;
  padding: 0;
  width: 180px;
  height: 40px;
}
ul#menu ul.twoCol
{ 
  margin: 0;
  background: rgb(255, 255, 255);
  border: 1px solid;
  border-color: #808080;
  position: absolute;
  list-style: none;
  width: 380px;
  z-index: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  column-rule: 1px solid rgba(128, 128, 128, 0.3);
  column-gap : 25px;

}
ul#menu ul.twoCol li
{
  display: block;
  position: relative;
}
ul#menu ul li a
{
  border:none;
  display: block;
  width: auto;
}
ul#menu ul li a:hover span
{
  border: none ;
  background-color: rgb(255,255,255);
  color: #808080;
}
ul#menu ul ul
{
  top: 0;
  left: 180px;
  z-index: 2;
}
ul#menu li ul li a:hover {
  text-decoration: none;
  color: rgba(12, 38, 76, 0.86);
}
ul#menu li ul li a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
ul#menu li ul li a:before {
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    bottom: 10px;
    left: 0;
    background-color: rgba(12, 38, 76, 0.86);
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    margin: 0 auto;
    transition: all 0.3s ease-in-out 0s;
    right: 0;
} 